The complicated part!
A container image is a lightweight, stand-alone, executable package of a piece of software that includes everything needed to run it: code, runtime, system tools, system libraries, settings.

docker run -it --rm --name redbrick\
SECRET_API_TOKEN='somethingThatMustChange'\
RECAPTCHA_SITE_KEY='redbrickIsGreat'\
RECAPTCHA_SECRET_KEY='totalySecretKey'\
LOG_ROTATE='24h'\
-p 3000:3000 redbrick/site
version: '3'
services:
redbrick:
image: 'redbrick/site:latest'
restart: 'always'
ports:
- '3000:3000'
environment:
SECRET_API_TOKEN: 'somethingThatMustChange'
RECAPTCHA_SITE_KEY: 'redbrickIsGreat'
RECAPTCHA_SECRET_KEY: 'totalySecretKey'
LOG_ROTATE: '24h'
